home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / mysql / my.cnf
Text File  |  2008-09-19  |  4KB  |  158 lines

  1. #
  2. # The MySQL database server configuration file.
  3. #
  4. # You can copy this to one of:
  5. # - "/etc/mysql/my.cnf" to set global options,
  6. # - "~/.my.cnf" to set user-specific options.
  7. # One can use all long options that the program supports.
  8. # Run program with --help to get a list of available options and with
  9. # --print-defaults to see which it would actually understand and use.
  10. #
  11. # For explanations see
  12. # http://dev.mysql.com/doc/mysql/en/server-system-variables.html
  13.  
  14. # This will be passed to all mysql clients
  15. # It has been reported that passwords should be enclosed with ticks/quotes
  16. # escpecially if they contain "#" chars...
  17. # Remember to edit /etc/mysql/debian.cnf when changing the socket location.
  18. [client]
  19. port        = 3306
  20. socket        = /var/run/mysqld/mysqld.sock
  21.  
  22. # Here is entries for some specific programs
  23. # The following values assume you have at least 32M ram
  24.  
  25. # This was formally known as [safe_mysqld]. Both versions are currently parsed.
  26. [mysqld_safe]
  27. socket        = /var/run/mysqld/mysqld.sock
  28. nice        = 0
  29.  
  30. [mysqld]
  31. #
  32. # * Basic Settings
  33. #
  34.  
  35. #
  36. # * IMPORTANT
  37. #   If you make changes to these settings and your system uses apparmor, you may
  38. #   also need to also adjust /etc/apparmor.d/usr.sbin.mysqld.
  39. #
  40.  
  41. user        = mysql
  42. pid-file    = /var/run/mysqld/mysqld.pid
  43. socket        = /var/run/mysqld/mysqld.sock
  44. port        = 3306
  45. basedir        = /usr
  46. datadir        = /var/lib/mysql
  47. tmpdir        = /tmp
  48. language    = /usr/share/mysql/english
  49. skip-external-locking
  50. #
  51. # Instead of skip-networking the default is now to listen only on
  52. # localhost which is more compatible and is not less secure.
  53. bind-address        = 127.0.0.1
  54. #
  55. # * Fine Tuning
  56. #
  57. key_buffer        = 16M
  58. max_allowed_packet    = 16M
  59. thread_stack        = 128K
  60. thread_cache_size    = 8
  61. # This replaces the startup script and checks MyISAM tables if needed
  62. # the first time they are touched
  63. myisam-recover        = BACKUP
  64. #max_connections        = 100
  65. #table_cache            = 64
  66. #thread_concurrency     = 10
  67. #
  68. # * Query Cache Configuration
  69. #
  70. query_cache_limit       = 1M
  71. query_cache_size        = 16M
  72. #
  73. # * Logging and Replication
  74. #
  75. # Both location gets rotated by the cronjob.
  76. # Be aware that this log type is a performance killer.
  77. #log        = /var/log/mysql/mysql.log
  78. #
  79. # Error logging goes to syslog. This is a Debian improvement :)
  80. #
  81. # Here you can see queries with especially long duration
  82. #log_slow_queries    = /var/log/mysql/mysql-slow.log
  83. #long_query_time = 2
  84. #log-queries-not-using-indexes
  85. #
  86. # The following can be used as easy to replay backup logs or for replication.
  87. # note: if you are setting up a replication slave, see README.Debian about
  88. #       other settings you may need to change.
  89. #server-id        = 1
  90. #log_bin            = /var/log/mysql/mysql-bin.log
  91. expire_logs_days    = 10
  92. max_binlog_size         = 100M
  93. #binlog_do_db        = include_database_name
  94. #binlog_ignore_db    = include_database_name
  95. #
  96. # * BerkeleyDB
  97. #
  98. # Using BerkeleyDB is now discouraged as its support will cease in 5.1.12.
  99. skip-bdb
  100. #
  101. # * InnoDB
  102. #
  103. # InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
  104. # Read the manual for more InnoDB related options. There are many!
  105. # You might want to disable InnoDB to shrink the mysqld process by circa 100MB.
  106. #skip-innodb
  107. #
  108. # * Federated
  109. #
  110. # The FEDERATED storage engine is disabled since 5.0.67 by default in the .cnf files
  111. # shipped with MySQL distributions (my-huge.cnf, my-medium.cnf, and so forth).
  112. #
  113. skip-federated
  114. #
  115. # * Security Features
  116. #
  117. # Read the manual, too, if you want chroot!
  118. # chroot = /var/lib/mysql/
  119. #
  120. # For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
  121. #
  122. # ssl-ca=/etc/mysql/cacert.pem
  123. # ssl-cert=/etc/mysql/server-cert.pem
  124. # ssl-key=/etc/mysql/server-key.pem
  125.  
  126.  
  127.  
  128. [mysqldump]
  129. quick
  130. quote-names
  131. max_allowed_packet    = 16M
  132.  
  133. [mysql]
  134. #no-auto-rehash    # faster start of mysql but no tab completition
  135.  
  136. [isamchk]
  137. key_buffer        = 16M
  138.  
  139. #
  140. # * NDB Cluster
  141. #
  142. # See /usr/share/doc/mysql-server-*/README.Debian for more information.
  143. #
  144. # The following configuration is read by the NDB Data Nodes (ndbd processes)
  145. # not from the NDB Management Nodes (ndb_mgmd processes).
  146. #
  147. # [MYSQL_CLUSTER]
  148. # ndb-connectstring=127.0.0.1
  149.  
  150.  
  151. #
  152. # * IMPORTANT: Additional settings that can override those from this file!
  153. #   The files must end with '.cnf', otherwise they'll be ignored.
  154. #
  155. !includedir /etc/mysql/conf.d/
  156.  
  157.